2005-07-26 Tor Lillqvist <tml@novell.com>
* gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
if missing (MSVC6). (#311633)
+2005-07-26 Tor Lillqvist <tml@novell.com>
+
+ * gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
+ if missing (MSVC6). (#311633)
+
2005-07-26 Federico Mena Quintero <federico@ximian.com>
* perf/: New directory with the start of a framework for testing
+2005-07-26 Tor Lillqvist <tml@novell.com>
+
+ * gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
+ if missing (MSVC6). (#311633)
+
2005-07-26 Federico Mena Quintero <federico@ximian.com>
* perf/: New directory with the start of a framework for testing
+2005-07-26 Tor Lillqvist <tml@novell.com>
+
+ * gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
+ if missing (MSVC6). (#311633)
+
2005-07-26 Federico Mena Quintero <federico@ximian.com>
* perf/: New directory with the start of a framework for testing
#include "gtkwin32embed.h"
+#if defined(_MSC_VER) && (WINVER < 0x0500)
+#ifndef GA_PARENT
+#define GA_PARENT 1
+#endif
+WINUSERAPI HWND WINAPI GetAncestor(HWND,UINT);
+#endif
+
GdkNativeWindow
_gtk_plug_windowing_get_id (GtkPlug *plug)
{